perm filename PUPERR.C[11,HE] blob sn#688200 filedate 1982-12-06 generic text, type T, neo UTF8
/* LINTLIBRARY */

/*
 * puperrmsg.c
 *
 * This file causes space for PupErrMsg to be defined exactly once
 * iff it is referenced by another module in a program.  All
 * human readable error message from Pup package routines are
 * placed into this string.
 *
 * Jeffrey Mogul & Dan Kolkowitz	12-January-1981
 *
 */

#ifndef MC68000
char	PupErrMsg[128];		/* is this big enough? */
#else
	asm("	.data");
	asm("	.globl PupErrMsg");
static char PupErrMsg[128];
#endif
/* static char might be right for vax, too? */